Hello Basic 10 liners Fans!!!!
This program is in WILD category and is a new way to go inside AMIGA BASIC with a more
safe way. I have added a Startup with a banner and 3 beep sound, a login to log inside
the AMIGA BASIC and once you are inside the command line you can choose between 3 different
optins:
1) LOAD an HELLO WORLD With L return on the keyboard
2) LOAD a COUNTER from 0 to a specified number with L1 and return and following online
instructions.
3) GOTO AMIGA BASIC with N retrun.
This is an example of how a new way to make a AMIGA BASIC OPERATING SYSTEM is possible.

LOADIGN THE PROGRAM:
You have to copy by hand keybaord this code inside the AMIGA BASIC instruction window:


1 PRINT ""
2 PRINT ""
3 PRINT ""
4 PRINT "============================================================"
5 PRINT "                 LOADING AMIGA BASIC                        ":BEEP:BEEP:BEEP
6 PRINT "____________________________________________________________"
7 FOR N = 1 TO 20000
8 NEXT N
9 IF N = 20000 THEN GOTO 10
10 PRINT ""
11 PRINT "MEMORIZE LOGIN":INPUT B$
12 CLS
14 PRINT "LOGIN"
15 INPUT C$
16 IF B$ = C$ THEN PRINT "WELCOME TO AMIGA BASIC, START CODING FROM LINE 42"
17 IF B$ <> C$ THEN GOTO 14
18 PRINT "TYPE L OR L1 TO LOAD, N TO BASIC":INPUT D$
19 IF D$ = "L" THEN PRINT "HELLO WORLD":GOTO 19
22 IF D$ = "L1" THEN GOTO 37
25 IF D$ = "N" THEN GOTO 41
30 IF D$ < > "L" THEN GOTO 18
35 IF D$ < > "N" THEN GOTO 18
36 IF D$ < > "L1" THEN GOTO 18
37 PRINT "INSERT NUMBER TO COUNT":INPUT F
38 FOR X = 1 TO F
39 PRINT X
40 NEXT X
41 PRINT "HELLO FROM AMIGA!!!!
9999 END


After this you can choose RUN from the upper AMIGA BASIC MENU and follow the upper instructions
i gave, to login write a password to remember and type it in login prompt when you want to log.


This is all, i hope you like my new invention for BASIC 10 LINERS 2018 edition.

Thank you for reading

Matteo Trevisan